* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #601616 ;
  color:#000000;
}

/* Navbar */
.logo {
	width: 700px;
	height: 50px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color:#000000;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-left: 100px;
  padding: 0px;
}

.nav-links a {
  text-decoration:none;
  color:#FFFFFF;
  font-weight: 500;
  font-size: 20px;
  margin-left: auto;
}

.contact-button {
  margin-left: 20px;
  padding: 8px 16px;
  background-color:#474747;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 20px
}

.brand-name {
  font-size: 2.0rem;
  font-weight: normal;
  color:#F60000;
  font-family: "Jockey One", sans-serif;
  margin-right: auto;
}

.logo {
	width: 60px
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #1A1A1A;
  margin-top: 40px;
}

p {
	color: #FFFFFF;
	margin: 20px;
	padding: 5px;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background:#474747;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.market-card {
  position: relative;
  background-color:#000000;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.market-card:hover {
  transform: translateY(-5px);
}

.market-content {
  position: relative;
  z-index: 2;
}

.hover-image {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  transition: right 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}

.hover-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.market-card:hover .hover-image {
  right: 0;
}

h3, h1 {
	color: #FFFFFF;
}


h1 {
	margin-top: 40px;
	margin-left: 450px;
	font-size: 70px;
	font-family: "Jockey One", sans-serif;
}

